API Documentation
ConsoleOutputFormatter.h
1 // ConsoleOutputFormatter.h
3 //
5 
6 namespace nkDebug
7 {
14  {
15  public :
16 
17  // Constructor, destructor
26 
27  // Formatting
28  virtual nkMemory::String formatRunLaunch (const TestRunParameters& params) override ;
29  virtual nkMemory::String formatRunEnd () override ;
30  virtual nkLog::String formatClassLaunch (const TestClassObserverInformation& info) override ;
31  virtual nkLog::String formatClassBypass (const TestClassObserverInformation& info) override ;
32  virtual nkLog::String formatClassEnd (const TestClassObserverInformation& info) override ;
33  virtual nkLog::String formatTestLaunch (const TestFunctionObserverInformation& info) override ;
34  virtual nkLog::String formatTestBypass (const TestFunctionObserverInformation& info) override ;
35  virtual nkLog::String formatTestSuccess (const TestFunctionObserverInformation& info) override ;
36  virtual nkLog::String formatTestFailure (const TestFunctionObserverInformation& info) override ;
37  } ;
38 }
nkDebug::TestClassObserverInformation
Information provided during a TestClass run.
Definition: TestClassObserverInformation.h:12
nkDebug::ConsoleOutputFormatter::formatRunEnd
virtual nkMemory::String formatRunEnd() override
nkDebug::ConsoleOutputFormatter::ConsoleOutputFormatter
ConsoleOutputFormatter()
nkDebug::ConsoleOutputFormatter::formatClassEnd
virtual nkLog::String formatClassEnd(const TestClassObserverInformation &info) override
nkDebug::ConsoleOutputFormatter::formatClassBypass
virtual nkLog::String formatClassBypass(const TestClassObserverInformation &info) override
nkDebug::ConsoleOutputFormatter
Implementation of a console friendly output formatting.
Definition: ConsoleOutputFormatter.h:14
nkDebug::OutputFormatter
Base class for test's output formatting.
Definition: OutputFormatter.h:15
nkDebug::ConsoleOutputFormatter::formatTestLaunch
virtual nkLog::String formatTestLaunch(const TestFunctionObserverInformation &info) override
nkDebug::ConsoleOutputFormatter::formatTestSuccess
virtual nkLog::String formatTestSuccess(const TestFunctionObserverInformation &info) override
nkDebug::ConsoleOutputFormatter::~ConsoleOutputFormatter
virtual ~ConsoleOutputFormatter()
nkDebug::ConsoleOutputFormatter::formatRunLaunch
virtual nkMemory::String formatRunLaunch(const TestRunParameters &params) override
nkDebug::ConsoleOutputFormatter::formatTestFailure
virtual nkLog::String formatTestFailure(const TestFunctionObserverInformation &info) override
nkDebug::ConsoleOutputFormatter::formatTestBypass
virtual nkLog::String formatTestBypass(const TestFunctionObserverInformation &info) override
nkMemory::String
Class holding information about a string, with ownership over the data.
Definition: String.h:22
nkDebug::TestRunParameters
Parameters allowing to drive a test run sequence.
Definition: TestRunParameters.h:12
nkDebug::TestFunctionObserverInformation
Information provided during a function run.
Definition: TestFunctionObserverInformation.h:12
nkDebug::ConsoleOutputFormatter::formatClassLaunch
virtual nkLog::String formatClassLaunch(const TestClassObserverInformation &info) override
nkDebug
Encompasses all API of component NilkinsDebug.
Definition: LogManager.h:7